home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Text⁄Files
/
Regexp
/
regerror.c
< prev
next >
Wrap
C/C++ Source or Header
|
1991-04-09
|
232b
|
18 lines
#include "stdio.h"
#include "regexp.h"
#include "regproto.h"
#include "stdlib.h"
void
regerror(s)
char *s;
{
#ifdef ERRAVAIL
error("regexp: %s", s);
#else
fprintf(stderr, "regexp(3): %s", s);
exit(1);
#endif
/* NOTREACHED */
}